# Haze (8/10)
# Generated for MiSTer FPGA -- adds horizontal blur WITHOUT scanlines.
#
# Logic:
#   - Vertical coefficients sum to 128 at every phase, so no row is
#     dimmed: scanlines are completely suppressed.
#   - Horizontal coefficients are a Gaussian-shaped 4-tap kernel;
#     spreading weight across neighboring taps softens / blurs the
#     image (a stand-in for the softness a real CRT or a composite
#     blend would produce).
#
# range: -128..128   sum of each row must not exceed the range.
#
# Horizontal Coefficients
  29,   68,   29,    2
  26,   67,   32,    3
  23,   66,   35,    4
  21,   65,   38,    4
  18,   63,   42,    5
  16,   61,   45,    6
  14,   58,   48,    8
  12,   56,   51,    9
  10,   54,   54,   10
   9,   51,   56,   12
   8,   48,   58,   14
   6,   45,   61,   16
   5,   42,   63,   18
   4,   38,   65,   21
   4,   35,   66,   23
   3,   32,   67,   26
# Vertical Coefficients
   0,  128,    0,    0
   0,  128,    0,    0
   0,  127,    1,    0
   0,  125,    3,    0
   0,  120,    8,    0
   0,  112,   16,    0
   0,  101,   27,    0
   0,   85,   43,    0
   0,   64,   64,    0
   0,   43,   85,    0
   0,   27,  101,    0
   0,   16,  112,    0
   0,    8,  120,    0
   0,    3,  125,    0
   0,    1,  127,    0
   0,    0,  128,    0
